home *** CD-ROM | disk | FTP | other *** search
- //
- // CITString include
- //
- // StormC
- //
- // version 2002.01.25
- //
-
- #ifndef CIT_STRING_H
- #define CIT_STRING_H TRUE
-
- #ifndef CIT_INPUT_H
- #include "CITInput.h"
- #endif
-
- class CITString:public CITInput
- {
- public:
- CITString();
- ~CITString();
-
- void TextVal(char* text);
- char* TextVal();
-
- protected:
- virtual Object* NewObjectA(TagItem* tags);
-
- private:
- TagItem* stringTag;
- };
-
- #endif
-